home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 July: Mac OS SDK / Dev.CD Jul 00 SDK2.toast / Development Kits / Hardware / Mac OS USB DDK / Mac OS USB DDK 1.4.1 / Examples / USBSampleStorageDriver / USB_Version.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-04-25  |  843 b   |  28 lines  |  [TEXT/CWIE]

  1. /*
  2.     File:        USB_Version.h
  3.  
  4.     Contains:    All version definitions for the USB driver
  5.  
  6.     Version:    2.0
  7.  
  8.     Copyright:    © 1998-2000 by Apple Computer, Inc., all rights reserved.
  9.  
  10. */
  11.  
  12.  
  13. #ifndef __STORAGECLASSVERSION__
  14. #define __STORAGECLASSVERSION__
  15.  
  16. // All definitions for the version number of the drivers
  17. #define kStorageStringVersShort        "1.0d1"
  18. #define kStorageStringVers1Long        "1.0d1, © 2000 My Comapny"
  19. #define kStorageStringVers2Long        "USB Sample Storage Driver"
  20.  
  21. #define kStorageHexMajorVers        0x01                        // This should never change for the current project.
  22. #define kStorageHexMinorVers        0x01                        // This should never change for the current project.
  23. #define kStorageReleaseStage        developStage                // Be sure to adjust this when the milestone is reached.
  24. #define kStorageCurrentRelease        0x01                        // Be sure to adjust this number every build.
  25.  
  26. #endif
  27.  
  28.